home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / rsxwdk2s.zip / RSXWDK / LIBSRC / KERNEL / KERNE349.C < prev    next >
C/C++ Source or Header  |  1994-12-19  |  261b  |  15 lines

  1. #define STRICT
  2. #include <windows.h>
  3. #include <sys/rsxw32.h>
  4.  
  5. long WINAPI _hread (HFILE par1, void _huge* par2, long par3)
  6. {
  7.     STACKWORDS(1+2+2);
  8.  
  9.     PUSH_WORD(par1);
  10.     PUSH_LPSTR(par2);
  11.     PUSH_LONG(par3);
  12.     return WINCALL(349,KERNEL);
  13. }
  14.  
  15.